home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Resource for Source: C/C++
/
Resource for Source - C-C++.iso
/
codelib9
/
v_11_03
/
1103018b
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-11-01
|
207 b
|
10 lines
/* strftime function */
#include "xtime.h"
size_t (strftime)(char *s, size_t n,
const char *fmt, const struct tm *t)
{ /* format time to string */
return (_Strftime(s, n, fmt, t, &_Times));
}